home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 076-100 / 084 / ed / amiga.c < prev    next >
Text File  |  1995-03-13  |  169b  |  15 lines

  1. /*
  2.  *  Fake the library routines not supplied on the Amiga.  They really aren't
  3.  *  very important anyway...
  4.  */
  5.  
  6. signal ()
  7. {
  8.     return (-1);
  9. }
  10.  
  11. fork ()
  12. {
  13.     return (-1);
  14. }
  15.